Hello everyone,
I have a FreeBSD 9.2 machine that I use mostly as a file server/repository for my network. I'd like to upgrade the storage and I was thinking of using three or four WD30EFRX in RAID-Z1, but I'm not sure how to correctly format 4k drives (maybe it's not an issue anymore).
If I simply plug the drives and
Thanks in advance for any input,
Gherardo
I have a FreeBSD 9.2 machine that I use mostly as a file server/repository for my network. I'd like to upgrade the storage and I was thinking of using three or four WD30EFRX in RAID-Z1, but I'm not sure how to correctly format 4k drives (maybe it's not an issue anymore).
If I simply plug the drives and
zpool create tank raidz1 ada0 ada1 ada2
will these three drives be automatically aligned? Or do I have to use gnop and align on every single drive? If the solution is the latter, does this look right?
Code:
gnop create -S 4096 /dev/ada0
gnop create -S 4096 /dev/ada1
gnop create -S 4096 /dev/ada2
zpool create tank raidz1 /dev/ada0.nop /dev/ada1.nop /dev/ada2.nop
zpool export tank
gnop destroy /dev/ada0.nop /dev/ada1.nop /dev/ada2.nop
zpool import tank
Thanks in advance for any input,
Gherardo
Last edited by a moderator: